home *** CD-ROM | disk | FTP | other *** search
/ Champak 49 / Volume 49 - JOGO DISK .iso / Games / jetski.swf / scripts / DefineSprite_88 / frame_21 / DoAction.as
Encoding:
Text File  |  2007-10-01  |  220 b   |  13 lines

  1. this.arrowAniM.onPress = function()
  2. {
  3.    this._parent.gotoAndPlay("onL");
  4. };
  5. this.onEnterFrame = function()
  6. {
  7.    if(Key.isDown(32))
  8.    {
  9.       this.gotoAndPlay("onL");
  10.       this.onEnterFrame = null;
  11.    }
  12. };
  13.